home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_show / parking / parking.e < prev    next >
Text File  |  1998-12-22  |  3KB  |  159 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  4. --                       http://www.loria.fr/SmallEiffel
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it 
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later 
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License 
  11. -- for  more  details.  You  should  have  received a copy of the GNU General 
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class PARKING
  17.  
  18. creation {ANY}
  19.    make
  20.  
  21. feature {ANY}
  22.    
  23.    lower_level: INTEGER is
  24.       do
  25.      Result := level_list.lower;
  26.       end;
  27.    
  28.    upper_level: INTEGER is
  29.       do
  30.      Result := level_list.upper;
  31.       end;
  32.    
  33.    hour_price: REAL;
  34.    
  35.    default_hour_price: REAL is 1.50;
  36.    
  37.    count: INTEGER is
  38.       local
  39.      i: INTEGER;
  40.       do
  41.      from  
  42.         i := lower_level;
  43.      until
  44.         i > upper_level
  45.      loop
  46.         Result := Result + level_count(i);
  47.         i := i + 1;
  48.      end;
  49.       end;
  50.    
  51.    clock: DATE;
  52.    
  53.    level_count(number: INTEGER): INTEGER is
  54.       require
  55.      number <= upper_level;
  56.      lower_level <= number;
  57.       do
  58.      Result := (level_list @ number).count;
  59.       ensure
  60.      Result >= 0;
  61.       end;
  62.  
  63. feature {ANY} -- Modifications :
  64.    
  65.    make(ll: like level_list) is
  66.       require
  67.      ll /= Void
  68.       do
  69.      !!clock.make(0,360);
  70.      hour_price := default_hour_price;
  71.      level_list := ll;
  72.      last_car := 0;
  73.       ensure
  74.      hour_price = default_hour_price;
  75.      level_list = ll;
  76.      last_car = 0;
  77.       end;
  78.    
  79.    arrival: INTEGER is
  80.       -- Gives 0 when no more place.
  81.       local
  82.      i: INTEGER;
  83.       do
  84.      from  
  85.         i := lower_level;
  86.      until
  87.         (i > upper_level) or else        
  88.         (not (level_list @ i).full)
  89.      loop
  90.         i := i + 1;
  91.      end;
  92.      if (i > upper_level) or else 
  93.         (level_list @ i).full  
  94.      then
  95.         Result := 0;
  96.      else
  97.         last_car := last_car + 1;
  98.         level_list.item(i).arrival(last_car,clone(clock));
  99.         Result := last_car;
  100.      end;
  101.       ensure
  102.      Result >= 0;
  103.       end;
  104.    
  105.    departure(car: INTEGER): REAL is
  106.      -- Gives the price to pay or -1 when car has already leaved. 
  107.       require
  108.      car > 0;
  109.       local
  110.      i: INTEGER;
  111.      stop: BOOLEAN;
  112.      c: like clock;
  113.       do
  114.      from  
  115.         i := lower_level;
  116.         stop := level_list.count <= 0;
  117.         Result := -1;
  118.         c := clone(clock);
  119.      until
  120.         stop
  121.      loop
  122.         Result := (level_list @ i).departure(car,c,hour_price);
  123.         i := i + 1;
  124.         stop := (Result >= 0) or (i > upper_level);
  125.      end;
  126.       end;
  127.    
  128.    add_time(incr: INTEGER) is
  129.       do
  130.      clock.add_time(incr);
  131.       end;
  132.    
  133.    set_hour_price(hp: REAL) is
  134.       require
  135.      hp >= 0;
  136.       do
  137.      hour_price := hp;
  138.       ensure
  139.      hour_price = hp;
  140.       end;
  141.  
  142. feature {NONE}
  143.    
  144.    level_list: ARRAY[LEVEL];
  145.    
  146.    last_car: INTEGER;
  147.  
  148. invariant
  149.    
  150.    valid_price: hour_price >= 0;
  151.      
  152.    clock /= Void;
  153.    
  154.    last_car >= 0;
  155.    
  156.    level_list /= Void;
  157.    
  158. end -- PARKING
  159.